home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / callcunit.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  203 b   |  15 lines

  1. unit CallCUnit;
  2.  
  3. interface
  4.  
  5. var
  6.   foo : Integer; asmname 'foo'; external;
  7.  
  8. procedure Bar; asmname 'bar';
  9.  
  10. implementation
  11.  
  12. {$L callc.c}  { Or: `callc.o' if you don't have the source }
  13.  
  14. end.
  15.